' Test 7 Hi lo game from SB.txt b+ 2020-03-07 mod for SB1 2021-02-18
' Let's start convention of Cap first letter if Keyword or Cmd
[
	r = Int( Rnd * 100 ) + 1 
	c = 0
	[
		? Guess my number from 1 to 100 ( 0 quits ); g
		isEmpty $= g,
		' Jmp wont exit far enough, could use GoTo, no this baby ends in 2 places
		If isEmpty
			End
		Fi
		If  g >= 1
			c = c + 1
			If  g > r
				. Too High!
			El
				If  g < r
					. Too Low!
				El
					. You guessed in ;c; guesses!
					.
					Exit
				Fi
			Fi
		El
			. You signaled quit, goodbye!
			End
		Fi
	]
]